home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / T / TC Prog Guide.cpt / picture ƒ / backdrop.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-16  |  441 b   |  22 lines  |  [TEXT/KAHL]

  1. /*
  2. *    FILE:        backdrop.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    November 7, 1990
  5. *
  6. *    Defines backdrop projector class.
  7. */
  8.  
  9. # ifndef    backdrop_h
  10. # define    backdrop_h
  11.  
  12. # include    "project.h"
  13.  
  14. /******************************************************************
  15. *   backdrop projector - blacks out whole screen
  16. ******************************************************************/
  17. struct    Backdrop_Projector:Projector
  18. {
  19.     void    set_screen(Screen*);
  20. };
  21.  
  22. # endif